home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Puzzle / Tangram 5.swf / scripts / frame_4 / PlaceObject2_64_43 / CLIPACTIONRECORD onClipEvent(enterFrame).as
Encoding:
Text File  |  2001-07-15  |  266 b   |  14 lines

  1. onClipEvent(enterFrame){
  2.    if(Slide)
  3.    {
  4.       step++;
  5.       _X = x1 + (x2 - x1) * step / num;
  6.       _Y = y1 + (y2 - y1) * step / num;
  7.       _rotation = r1 + (r2 - r1) * step / num;
  8.       if(step == num)
  9.       {
  10.          Slide = false;
  11.       }
  12.    }
  13. }
  14.